We would like to obtain price data of our app's subscription items in order to facilitate our work on our application.
I referred to the following document of AppStoreConnectAPI and found the API for acquiring the data.
Although as a result, we are not able to get the [Initial Price] data that we wanted to get.
https://developer.apple.com/documentation/appstoreconnectapi/read_subscription_price_point_information
Example:
id = "[unique id]"
url = "https://api.appstoreconnect.apple.com/v1/subscriptionPricePoints/" + id + "/equalizations"
params = "include=territory&filter[territory]=JPN&limit=200" #include=territory&filter[territory]=JPN
res = requests.get(url, params, headers=HEAD)
{
"data": [
{
"type": "subscriptionPricePoints",
"id": "[unique id]",
"attributes": {
"customerPrice": "50",
"proceeds": "35",
"proceedsYear2": "43"
},
As shown in the example above, the "Initial Price" information was not included.
My question is:
How do I get the "initial price" information for the subscription item in the following page or csv file?
https://appstoreconnect.apple.com/apps/1262985592/appstore/subscriptions/1499075709/pricing
If someone know any tips about this, please let me know.
Post
Replies
Boosts
Views
Activity
Hello,
I found that when installing an arbitrary app to macOS 12.0 by pkg file, it shows following error message.
PKInformSystemPolicyInstallOperation failed with error:An error occurred while registering installation with Gatekeeper.
Issue can not be replicated with macOS 11.
Also even the error message has shown, installation seems to be completed properly.
Have anyone seen similar issue with macOS 12?
Hi,I'm seeing some crashes of application when using Japanese virtual keyboard.Looks _UIAnalyticGatherMultitouchAnalytics cause EXC_BAD_ACCESS and this lead to application crash.I have seen this issue on:iPadOS13.1.1iPadOS13.4 public betaIn iPadOS13.1.1, looks to be only some particular devices getting this issue.But in iPadOS13.4 public beta, this issue can be seen with every device.Also, when clean installing OS, issue would be clear.From these evidence, I'm assuming experience of upgraded to beta version might effecting some how.Have anyone seen this issue before?